home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 1.iso / toolbox / src / tutorials / custEducation / opengl2 / lib / rgbWriteImageFile.c < prev    next >
C/C++ Source or Header  |  1996-11-11  |  3KB  |  96 lines

  1. /*
  2.  * Copyright 1994, Silicon Graphics, Inc.
  3.  * All Rights Reserved.
  4.  *
  5.  * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  6.  * the contents of this file may not be disclosed to third parties, copied or
  7.  * duplicated in any form, in whole or in part, without the prior written
  8.  * permission of Silicon Graphics, Inc.
  9.  *
  10.  * RESTRICTED RIGHTS LEGEND:
  11.  * Use, duplication or disclosure by the Government is subject to restrictions
  12.  * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  13.  * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  14.  * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  15.  * rights reserved under the Copyright Laws of the United States.
  16.  */
  17.  
  18. /*
  19.  *    rgbWriteImageFile.c
  20.  *    Modified version of Paul Haeberli's writeimg -
  21.  *    abgr ordering switched to rgba for OpenGL and prototypes added
  22.  *                - David Marsland - 1993.
  23.  *
  24.  *    This function takes an array of the form read by glReadPixels and
  25.  *    puts it in a file in the .rgb format.
  26.  *
  27.  *    Write out an RGB image file.  This example uses three functions
  28.  *    from the image library: 
  29.  *
  30.  *        iopen, putrow, and iclose.    
  31.  *
  32.  *     The function iopen is called to describe the xsize and ysize of the 
  33.  *    RGB image to be written out.  
  34.  *
  35.  *    The function putrow writes a row of image data to the image file. It is
  36.  *    called with an array of shorts with values in the range [0..255].
  37.  *    
  38.  *    The function iclose is called to close the image file.
  39.  *
  40.  *    This function puts an array of the form read by lrectread and
  41.  *    puts it in a file in the .rgb format.
  42.  *
  43.  *                Paul Haeberli - 1987
  44.  *
  45.  */
  46.  
  47. #include <unistd.h>
  48.  
  49. #include <GL/gl.h>
  50. #include "rgbImageFile.h"
  51. #include <gl/image.h>
  52.  
  53. unsigned short rbuf[4096];
  54. unsigned short gbuf[4096];
  55. unsigned short bbuf[4096];
  56.  
  57. void
  58. rgbWriteImageFile( char *name, GLint xsize, GLint ysize, GLuint *parray)
  59. {
  60.     int x,y;
  61.     unsigned int cur_col;
  62.     IMAGE *image;
  63.  
  64.     /* This program and librgbImageFile both rely on an unsigned
  65.      * int being 4 unsigned contiguous bytes.  The following test 
  66.      * checks to see if this is the case. 
  67.      */
  68.     if ( sizeof( unsigned int ) != 4  )
  69.     {
  70.         fprintf (stderr, "Warning: sizeof( unsigned int ) != 4,\
  71.             this program and librgbImageFile must be modified\n"
  72.             );
  73.  
  74.         exit (1);
  75.     }
  76.  
  77.     image = iopen(name,"w",RLE(1),3,xsize,ysize,3);
  78.     for(y=0; y<ysize; y++) {
  79.     /*
  80.         fill rbuf, gbuf, and bbuf with pixel values 
  81.     */
  82.     for (x=0;x<xsize;x++)
  83.     {
  84.         cur_col = parray[x];
  85.         bbuf[x] = (cur_col >> 8)&0xff;
  86.         gbuf[x] = (cur_col >> 16)&0xff;
  87.         rbuf[x] = (cur_col >> 24)&0xff;
  88.     }
  89.     putrow(image,rbuf,y,0);        /* red row */
  90.     putrow(image,gbuf,y,1);        /* green row */
  91.     putrow(image,bbuf,y,2);        /* blue row */
  92.     parray += xsize;
  93.     }
  94.     iclose(image);
  95. }
  96.